home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-08-23 | 459 b | 16 lines | [TEXT/ToyS] |
- tell application "BBEdit 5.1"
- try
- if modified of window 1 is true then save window 1
- on error errString
- display dialog "Error: " & errString buttons "OK" default button 1
- end try
- try
- set myfile to file of window 1
- tell application "DropFTP 1.0a7" -- RENAME THE APPLICATION TO MATCH YOUR COPY OF DROPFTP
- activate
- open myfile
- end tell
- on error errString
- display dialog "Error: " & errString buttons "OK" default button 1
- end try
- end tell